home *** CD-ROM | disk | FTP | other *** search
- @echo off
-
- cls
-
-
- :getDisk1
- if exist trespass.exe goto runPatch
- echo This patch must be ran from your installed directory of Trespasser.
- echo Go to the root directory of your game
- echo and run this patch again.
- goto exit
-
-
- :runPatch
- cls
- echo ╔═══════════════════════════════════════════════════╗
- echo ║ Trespasser Patch (c) HUMMERS ║
- echo ╟───────────────────────────────────────────────────╢
- echo ║ ║
- echo ║ Press the appropriate letter to ║
- echo ║ patch according to your system: ║
- echo ║ ║
- echo ║ A. AMD K6 ║
- echo ║ B. Pentium ║
- echo ║ C. Pentium Pro and Pentium 2 ║
- echo ║ ║
- echo ║ Press X - Exit this program ║
- echo ║ ║
- echo ║ ║
- echo ╚═══════════════════════════════════════════════════╝
-
-
- what c "Enter a letter > " abcx
-
- cls
-
- if "%what%" == "A" goto Run1
- if "%what%" == "B" goto Run2
- if "%what%" == "C" goto Run3
- if "%what%" == "X" goto exit
- if "%what%" == "" goto exit
-
-
- :Run1
- echo.
- echo Installing Trespasser AMD K6 Patch
- echo.
- if exist k6.1 goto Inst1
- echo Error finding file... please redownload this patch.
- goto exit
-
- :Inst1
- copy /y k6.1 trespass.exe
- goto menu
-
- :Run2
- echo.
- echo Installing Trespasser Pentium Patch
- echo.
- if exist p.1 goto Inst2
- echo Error finding file... please redownload this patch.
- goto exit
-
- :Inst2
- copy /y p.1 trespass.exe
- goto menu
-
- :Run3
- echo.
- echo Installing Trespasser Pentium Pro and Pentium 2 Patch
- echo.
- if exist pplus.1 goto Inst3
- echo Error finding file... please redownload this patch.
- goto exit
-
- :Inst3
- copy /y pplus.1 trespass.exe
- goto menu
-
- :menu
- echo Patching successful... run trespass.exe to play the game!
-
- :exit
-
-